home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 21
/
Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso
/
Aminet
/
comm
/
cnet
/
SE_Read.lha
/
Read.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-07-04
|
757b
|
20 lines
/* Multi-Read File */
bufferflush;options results
tr=transmit;se=sendstring;sf=sendfile;pr=prompt;gu=getuser;gc=getchar
gu 47;Local=result
if ~ exists("libs:rexxreqtools.library") then Do ; Transmit "Can't find rexxreqtools.library, aborting.." ; Exit ; End
if ~ show('L',"rexxreqtools.library") then if ~addlib('rexxreqtools.library',0,-30,0) then exit
If Local~=-1 then do
bbscommand !!rf
exit
end
else do
loc=showlist('l','intuition.library',,'a')
adr=c2d(next(loc,60),4)
end
call rtfilerequest("dh4:ansi/",,"Select that file.....",,"rtfi_flags=freqf_multiselect rt_screen="||adr,file)
if file == 1 then do i=1 to file.count
se "*0"file.i"}"
tr "cfPress cdReturncf.....g0f1"
end
exit